Heroku now makes an empty repo with the deployment button (#1570)

Andrew Cantino 7 years ago
parent
commit
e1a2b5ae25
1 changed files with 3 additions and 1 deletions
  1. 3 1
      app/views/devise/registrations/new.html.erb

+ 3 - 1
app/views/devise/registrations/new.html.erb

@@ -19,9 +19,11 @@
19 19
 
20 20
               <li>Run the following commands:<br />
21 21
                 <%= content_tag :pre do -%>
22
-heroku git:clone --app <%= content_tag :var, app_name %>
22
+git clone https://github.com/cantino/huginn.git <%= content_tag :var, app_name %>
23 23
 cd <%= content_tag :var, app_name %>
24
+heroku git:remote -a <%= content_tag :var, app_name %>
24 25
 cp .env.example .env
26
+gem install bundler
25 27
 bundle
26 28
 bin/setup_heroku
27 29
 <%- end %>